gsk: Remove an unused debug flag
authorMatthias Clasen <mclasen@redhat.com>
Mon, 20 Jul 2020 01:21:41 +0000 (21:21 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 20 Jul 2020 11:03:08 +0000 (07:03 -0400)
GSK_DEBUG_DIFF was not used anywhere, so remove it.

gsk/gskdebug.c
gsk/gskdebugprivate.h

index 68674b7fed2d233dffc428be0dd298ed033efc86..3538cec0e5093ba0e8a744f4f4d3955d68746c9f 100644 (file)
@@ -11,8 +11,7 @@ static const GdkDebugKey gsk_debug_keys[] = {
   { "surface", GSK_DEBUG_SURFACE, "Information about surfaces" },
   { "fallback", GSK_DEBUG_FALLBACK, "Information about fallbacks" },
   { "glyphcache", GSK_DEBUG_GLYPH_CACHE, "Information about glyph caching" },
-  { "diff", GSK_DEBUG_DIFF, "Show differences" },
-  { "geometry", GSK_DEBUG_GEOMETRY, "Show borders" },
+  { "geometry", GSK_DEBUG_GEOMETRY, "Show borders (when using cairo)" },
   { "full-redraw", GSK_DEBUG_FULL_REDRAW, "Force full redraws" },
   { "sync", GSK_DEBUG_SYNC, "Sync after each frame" },
   { "vulkan-staging-image", GSK_DEBUG_VULKAN_STAGING_IMAGE, "Use a staging image for Vulkan texture upload" },
index acf9bf7547841180e5cfaa074b6bea7e0cc392a4..345c1555ab411555e40e19e0c073b3177a776229 100644 (file)
@@ -14,7 +14,6 @@ typedef enum {
   GSK_DEBUG_VULKAN                = 1 <<  5,
   GSK_DEBUG_FALLBACK              = 1 <<  6,
   GSK_DEBUG_GLYPH_CACHE           = 1 <<  7,
-  GSK_DEBUG_DIFF                  = 1 <<  8,
   /* flags below may affect behavior */
   GSK_DEBUG_GEOMETRY              = 1 <<  9,
   GSK_DEBUG_FULL_REDRAW           = 1 << 10,